<?xml version="1.0"?>
<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 <xsl:output method="html" indent="yes"/>

 <xsl:template match="/">
  <HTML>
   <BODY>
    <P STYLE="color:Teal">
     <xsl:apply-templates/>
    </P>
   </BODY>
  </HTML>
 </xsl:template>

 <xsl:template match="/abeceda/*">
  <xsl:value-of select="text()"/>
  <xsl:value-of select="name()"/>
  <xsl:text> </xsl:text>
 </xsl:template>

</xsl:transform>